
body {
	display:-webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	font-family: Georgia, "Times New Roman",Times, serif;
	color: black;
	background-color: white;
	}

	h1, h2 , h3{	
		font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif;
		color: green 
	}		
	
	hi1{font-size: 1.4em;}
	hi2{font-size: 1.2em;}
	hi3{font-size: 1.0em;}
	
	
	
/* Mobile first - alle Dokument-Blöcke bekommen 100% Breite .........................................*/
header, nav, nav a, article, section, aside, footer {
	-webkit-flex: 1 100%;
	flex: 1 100%;
	}
article, section, aside, footer {
	border-radius: 3px 0.0em 3px;
	border: 1px solid;
	padding: 5px;
	margin: 1px;
	}
header {
	border-color: green;
	display:-webkit-flex;
	-webkit-flex-flow: row wrap;
	display: flex;
	flex-flow: row wrap;
	margin-bottom: 1px;
	}
	
header * {
	-webkit-flex: 1 1 0%;
	flex: 1 1 0%;
	}
	
header img {
	-webkit-flex: 0 0 15px
	flex: 0 0 150px;
	}

img {
	width: 100%;
	height: auto;				/* auto für normale Bilder */
	}
	
img.logo {
	width: 100%;
	height: 100%;				/* 100% besser als auto für Chrome (Nur Logo!) */
	}
	

	
nav {
	-webkit-flex: 1 1 100%;
	flex: 1 1 100%;
	}
	
nav, nav ul, nav li{
margin: 0px;
	padding: 1px;
	border:none;
	}
	
nav ul {
	display: -webkit-flex;
	-webkit-flex-direction: column;
	display: flex;
	flex-direction: column;
	margin-bottom: 1em; 		/* Abstand zu News oder Artikel */
	}

nav li {
	list-style-type:none;
	margin: 0px 0em 1px 0em;    /* oben rechts unten links   */
	-webkit-flex: 0 0 auto%;
	flex: 0 0 auto%;
	}
	
nav a {
	padding-top: 0.1em;			/* Raum zwischen Menütext und Rahmen oben*/
	padding-bottom: 0.1em;		/* Raum zwischen Menütext und Rahmen unten*/
	display:inline-block;
	width:100%;
	background: #6FBF44;
	border: 1px solid green;

	text-decoration: none;
	text-align: center;
	color: white;
	}

a:Link {
	text-decoration: none;
	}
	
nav a:hover {
	background-color: white;
	color: #6FBF44;
	}
	
nav a:focus {
	background-color: lime;
	color: black;
	}
	
nav a:active {
	background-color: lime;
	colour: black;
	}
	
nav a:visited {	
	}
	
	section {
	border-color: green;
	}



	
article {
	border-color: green;
	}
	
aside {
	background: #ebf5d7;
	border-color: green;
	}
	
footer {
	background: white;
	border-color: white;
	display:-webkit-flex;
	-webkit-flex-flow: row wrap;
	display: flex;
	flex-flow: row wrap;
	margin-top: 1em;
	font-size: 0.8em;
	padding: 1px;
	}
	
footer * {
	-webkit-flex: 1 1 0%;
	-webkit-justify-content: space-between;
	flex: 1 1 0%;
	justify-content: space-between;
	}
	
footer p {
	/*border-top: thin dotted;*/
	text-align: right;
	margin-right: 0.5em;
}
	
	
/* Smart Phones und Tablets mit mittlerer Auflösung .........................................*/
@media all and (min-width: 35em) {
	
	header img {
		margin-right: 1px
		maring-left: 1px;
		}
		
	nav ul {
		-webkit-flex-direction: row;
		flex-direction: row;
		}
		
	nav li {
		margin: 0 0.1px;
		-webkit-flex: 1 1 0%;
		flex: 1 1 0%;
		}

	article {
		webkit-order: 2;
		order: 2;
		}
		
	#news {
		-webkit-flex: 1 auto;
		-webkit-order: 3;
		flex: 1 auto;
		order: 3;
		}

	aside {
		/* durch auto werden die beiden asides in eine Zeile gesetzt */
		-webkit-flex: 1 auto;
		-webikit-order: 4;
		flex: 1 auto;
		order: 4;
		}

	footer {
		webkit-order: 5;
		order: 5;
		}
		
}


/* Large screens .............................................................................*/
@media all and (min-width: 50em) {
	
	article {
		/* Der Article wird 2.5x so breit wie die beiden asides! */
		-webkit-flex: 5 1 0%;
		-webkit-order: 3;
		order: 3;
		flex: 5 1 0%;
		}
	
	aside {
		-webkit-flex: 2 1 0%;
		flex: 2 1 0%;
		}
	
	#news {
		-webkit-flex: 2 1 0%;
		-webkit-order: 2;
		-webkit-align-self: center;
		flex: 2 1 0%;
		order: 2;
		align-self: center;
		height: auto;
		margin-top: 1em;
		}
		
}
